home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 54
/
Vol 54.iso
/
games
/
turttleo.swf
/
scripts
/
DefineSprite_33_bubble2
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-10-01
|
279 b
|
15 lines
var yspeed = 0;
this._yscale *= 0.5;
this._xscale *= 0.5;
this.onEnterFrame = function()
{
this._y += yspeed;
this._yscale *= 0.94;
this._xscale *= 0.94;
yspeed -= 0.1 + 1 * Math.random();
if(Math.random() > 0.8)
{
this.prevFrame();
}
};